#include <string.h>
#include <errno.h>
+typedef struct _GdkCursorPrivate GdkCursorPrivate;
+
+struct _GdkCursorPrivate
+{
+ GdkCursor cursor;
+ Cursor xcursor;
+ GdkDisplay *display;
+ gchar *name;
+ guint serial;
+};
+
static guint theme_serial = 0;
#include "gdkdisplay-x11.h"
#include <cairo-xlib.h>
-typedef struct _GdkCursorPrivate GdkCursorPrivate;
-
-struct _GdkCursorPrivate
-{
- GdkCursor cursor;
- Cursor xcursor;
- GdkDisplay *display;
- gchar *name;
- guint serial;
-};
-
void _gdk_x11_error_handler_push (void);
void _gdk_x11_error_handler_pop (void);